home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / ANSWERS / CH09_1.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  522b  |  28 lines

  1. #include "stdio.h"
  2. #include "conio.h"
  3.  
  4. void main()
  5. {
  6. char input_char;
  7.  
  8.    printf("Hit any key - to stop hit a $\n");
  9.    do {
  10.       input_char = _getch();
  11.       printf("Input character is %c, numerical value is %3d\n",
  12.                  input_char, input_char);
  13.    } while (input_char != '$');
  14. }
  15.  
  16.  
  17.  
  18. /*  Result of execution
  19.  
  20. Hit any key - to stop hit a $
  21. Input character is A, numerical value is  65
  22. Input character is B, numerical value is  66
  23. ...
  24. (The display depends on the input keys hit)
  25.  
  26. */
  27.  
  28.